Adding some more judges, here and there.
[and.git] / Codeforces / Codeforces Beta Round #90 / A / a.cpp
blobebbe56699d1799c67c90bb0c62ffa1511fa6f19b
1 using namespace std;
2 #include <algorithm>
3 #include <iostream>
4 #include <iterator>
5 #include <numeric>
6 #include <sstream>
7 #include <fstream>
8 #include <cassert>
9 #include <climits>
10 #include <cstdlib>
11 #include <cstring>
12 #include <string>
13 #include <cstdio>
14 #include <vector>
15 #include <cmath>
16 #include <queue>
17 #include <deque>
18 #include <stack>
19 #include <list>
20 #include <map>
21 #include <set>
23 #define foreach(x, v) for (typeof (v).begin() x=(v).begin(); x !=(v).end(); ++x)
24 #define For(i, a, b) for (int i=(a); i<(b); ++i)
25 #define D(x) cout << #x " is " << x << endl
27 int main(){
28 int a[2], n;
29 cin >> a[0] >> a[1] >> n;
30 int who = 0;
31 while (n > 0) {
32 int get = __gcd(n, a[who]);
33 n -= get;
34 who = !who;
36 cout << !who << endl;
37 return 0;